home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / asywiz / 8create.bat next >
Encoding:
DOS Batch File  |  1994-11-03  |  498 b   |  15 lines

  1. @echo off
  2. echo off
  3. echo   This batch file will assemble and link the EXAMPLE.ASM file using
  4. echo   A86 and LINK.  If you are using a different assembler and/or linker,
  5. echo   this batch file must be changed to reflect the names of your assembler
  6. echo   and linker.
  7. echo   --------------------------------------------------------------------
  8. pause
  9. ren example.asm example.8
  10. a86 example.8 example.obj
  11. ren example.8 example.asm
  12. link example,,nul,asmwiz;
  13. erase example.obj
  14. execom example
  15.